Your CSS is not working because of the errors I mentioned above – when you have CSS errors it invalidates all the CSS after that.
You also should NOT have a copy of the entire parent theme stylesheet in the child theme – so start by putting only this at the top of that file:
/*
Theme Name: Twentyten-childcmp
Theme URI: https://www.ads-software.com/extend/themes/twentyten
Description: Child theme for Twenty Ten theme
Author: Marie Dorey
Template: twentyten
License: GNU General Public License v2 or later
*/
@import url("../twentyten/style.css");
Then after that line, put ONLY your changes. Then we can start figuring out what’s going on.
Save a copy of your current child theme style.css file to your computer before you do the above.